home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / comm / fido / login_034.lzh / pwd.h < prev    next >
C/C++ Source or Header  |  1992-06-05  |  623b  |  29 lines

  1.  
  2. /*
  3.  *  PWD.H
  4.  *
  5.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  6.  *
  7.  *  $Header: WELMAT:src/RCS/pwd.h,v 1.2 92/06/05 10:49:19 rwm Exp Locker: rwm $
  8.  */
  9.  
  10. struct passwd {
  11.     char    *pw_name;
  12.     char    *pw_passwd;
  13.     long    pw_uid;
  14.     long    pw_gid;
  15.     long    pw_quota;
  16.     char    *pw_comment;
  17.     char    *pw_gecos;
  18.     char    *pw_dir;
  19.     char    *pw_shell;
  20.     char    *pw_shell_arg0;    /*  arg0 broken out from pw_shell   */
  21.     char    *pw_shell_argn;    /*  remaining args from pw_shell    */
  22. };
  23.  
  24. extern struct passwd *getpwuid();
  25. extern struct passwd *getpwnam();
  26.  
  27. extern char *PasswdFile;
  28.  
  29.